Welcome![Sign In][Sign Up]
Location:
Search - array class

Search list

[CSharpCSharp

Description: C#课程设计 C#课件 数组 类与对象 决策语句 继承 枚举与结构 管理错误与异常 -C# C# course design courseware making statements with the object array class inheritance enumeration and configuration management errors and exceptions
Platform: | Size: 7420928 | Author: 辛辛 | Hits:

[OtherC

Description: 设计一个通用数组类(主要这对数值型数据),设计相关成员以完成对数组的常用操作(如元素的添加、删除、访问、查找及数组排序等),并对>>、<<、[ ](返回某下标处得元素值)、=(给数组赋值)等运算符进行重载!所设计的数组类应能进行越界检查。-Design a generic array class (mainly this data to numeric), designed to complete the relevant members of the array common operations (such as elements to add, delete, access, search and sort the array, etc.), and >>, <<, [] (returns an element value index was at), = (to array assignment) and other operators overloaded! Array class is designed to be capable of cross-border checks.
Platform: | Size: 4992000 | Author: geass | Hits:

[source in ebookCheckAction.class

Description: php中,会遇到树状结构,可能要组织五维数组, 本段程序,很行的如何去组织-A multidimensional array organization, similar to the unlimited categories
Platform: | Size: 2048 | Author: 韩磊 | Hits:

[OtherSHAKA

Description: 自已写的位处理宏及位数组类代码,C/C++语言编写,代码在这里公开,希望大家积极下载使用。-Himself wrote a macro and a array class code, C/C++ language, code open here, hope that we actively download.
Platform: | Size: 4096 | Author: 古进波 | Hits:

[OtherSKBIT

Description: 自已写的位处理宏及位数组类代码,C/C++语言编写,代码在这里公开,希望大家积极下载使用。-Himself wrote a macro and a array class code, C/C++ language, code open here, hope that we actively download.
Platform: | Size: 4096 | Author: 古进波 | Hits:

[Data structsdir-biao

Description: 这是一个C++设计的动态数组顺序表类,帮助别人学习C-This is a dynamic array class C++ order table designed to help others learn C++
Platform: | Size: 2048 | Author: 姜雪峰 | Hits:

[OtherCDArray

Description: 用C++实现一个动态数组类接口的程序代码-With C++ implement a dynamic array class interface program
Platform: | Size: 4096 | Author: shalou | Hits:

[SCMCDArray1.2

Description: 用C++语言实现一个动态数组类接口的封装功能-Implement a dynamic array class encapsulation C++ language
Platform: | Size: 247808 | Author: shalou | Hits:

[OtherMyArray

Description: 动态数组及模板类 任务目标:   学习C++的类机制、模板机制、运算符重载、重载函数机制、内存动态分配与释放等。 任务描述:   使用C++的类机制实现一个动态的数组类MyArray,具有完整的构造和析构函数。使用模板机制,使其能够支持各种数据类型(包括结构体)。MyArray类中实现以下方法: 添加一个元素,使用函数重载的方式,实现1)添加数组尾部,2)添加到指定序号位置; 通过函数,设置指定位置(序号)的元素数据; 删除指定序号的元素; 删除所有元素; 获得元素个数 通过函数获取指定序号的元素; 重载运算符‘[]’,可以通过序号引用数组元素。   实现以上功能的动态数组类,并设计测试代码,验证实现的所有功能。要求数组元素的数据类型为自定义的数据结构,如“学生信息”。 任务提示:   添加元素时用new分配空间,删除时用delete删除空间-Dynamic arrays and template class mission objectives: learning class mechanism C++, the template mechanism, operator overloading, function overloading mechanism, such as dynamic memory allocation and deallocation. Task Description: Use C++ class mechanism to implement a dynamic array class MyArray, with full constructor and destructor functions. Using the template mechanism to support a variety of data types (including structures). MyArray class implements the following methods: add an element, the use of function overloading way to achieve a) to add an array of tail, 2) to specify the ordinal position through the function, setting the specified location (number) of the element data delete the specified number of Elements delete all the elements obtain the number of elements specified number of elements to get through the function overloaded operator ' []' , array elements can be referenced by number. Achieve more dynamic array class functionality and design test code, verif
Platform: | Size: 10502144 | Author: 周畅 | Hits:

[OtherArrayOfSort

Description: c++,利用动态数组实现一个排序类。其中排序是冒泡排序-Realized sorting using dynamic array class
Platform: | Size: 1024 | Author: 章先生 | Hits:

[OtherArray

Description: 数组类的实现与改进。利用操作符重载,定义类来生成一数组-An array of classes and achieve improvements. Use operator overloading to generate an array of custom class
Platform: | Size: 1024 | Author: 郭如雪 | Hits:

[VC/MFC06-02-2015_05-43-24

Description: c++ lession 10 chapters Implement a template class EnhancedSafeArray, which is a type of SafeArray. The class SafeArray implementation is given in safearray.h. Class SafeArray is a class that wraps a regular C++ array. It is considered a safe array class since it handles out of bounds array indexing through exception handling. Your class EnhancedSafeArray will augment the class SafeArray by supporting a copy constructor, a method to return the size of the array, an assignment operator, and an equality test operator.-c++ lession 10 chapters Implement a template class EnhancedSafeArray, which is a type of SafeArray. The class SafeArray implementation is given in safearray.h. Class SafeArray is a class that wraps a regular C++ array. It is considered a safe array class since it handles out of bounds array indexing through exception handling. Your class EnhancedSafeArray will augment the class SafeArray by supporting a copy constructor, a method to return the size of the array, an assignment operator, and an equality test operator.
Platform: | Size: 463872 | Author: ?????? | Hits:

[CSharpArray

Description: 3.编写程序:定义一个Person类,要求: ①私有成员数据: ●char ID[ 20 ] //身份证号 ●char *name //存放姓名的动态字符数组的起始地址 ●char *address //存放住址的动态字符数组的起始地址 ②公有成员函数: ●Person ( char *n=0, char *na=0, char *ad=0 ) //构造函数 ●Person ( Person &p ) //拷贝构造函数,实现深拷贝 ●~ Person ( ) //析构函数 ●Person & operator= ( Person &p ) //实现深赋值 ●void show() //输出各成员数据 ③编写main()函数对Person类进行测试。-3. Write a program: Define a Person class requirements: ① private member data: ● char ID [20] // ID number ● char* name // store name starting address dynamic character array ● char* address // store address the dynamic character array starting address ② public member functions: ● Person (char* n = 0, char* na = 0, char* ad = 0) // constructor ● Person (Person & p) // copy constructor, to achieve deep copy ● ~ Person () // destructor ● Person & operator = (Person & p) // achieve deep assignment ● void show () // output data ③ members write main ( ) function of the Person class to be tested.
Platform: | Size: 2980864 | Author: 仇一珂 | Hits:

[Data structsMatrix

Description: 自定义数组类,实现生成任意规模的数独文本文件。-A custom array class implementation of arbitrary size sudoku.
Platform: | Size: 4845568 | Author: niuwe | Hits:

[OtherARRAY

Description: dynamic array using class principle
Platform: | Size: 1024 | Author: fradin | Hits:

[Special EffectsArray

Description: 用类实现动态数组的各种操作,获取数组大小,重置数组大小,获取元素,重载[]操作符,追加新元素,删除元素,插入元素,重载=-With class implements a dynamic array of various operations, access to the array size, the size of the array is reset, access to the elements, overloaded [] operator, additional new elements, remove elements, insert elements overloaded =
Platform: | Size: 4096 | Author: ei451297 | Hits:

[CSharpMyXmlHelper

Description: 该类功能强大,实现了对数组、类、DataGridView 以XmlHelper的形式存储,同时还实现了以两层节点的形式存储变量。对于桌面程序中各种配置信息的存储非常方便。-It is very powerful and convenient for the configuration storage of the desktop application. Because not only can it be used to save some simple variables, but also it can be store Array,Class,DataGridView and so on directionly.
Platform: | Size: 3072 | Author: | Hits:

[Linux-Unixarray

Description: c++编写的队列操作类,包含队列的初始化,读取,写入等函数。-written in c++ class queue operations, including the initialization of the queue, read, write and other functions.
Platform: | Size: 1024 | Author: xingxudong | Hits:

[CSharpshuzuleimokuai

Description: 设计一个数组类模板MyArray<T>,实现一个通用的数组类-Design a template array class MyArray <T> To achieve a common array class
Platform: | Size: 11264 | Author: | Hits:

[Software EngineeringC_Sharp_-Part-2---Class-Dan-Array

Description: learning Array on C#
Platform: | Size: 206848 | Author: harry | Hits:
« 1 2 3 45 6 7 8 9 10 ... 35 »

CodeBus www.codebus.net